home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / MacPerl.Specifics < prev    next >
Text File  |  1993-12-15  |  8KB  |  230 lines

  1. Specific features of MacPerl                    Matthias Neeracher 15Dec93
  2.  
  3. This file describes differences between MacPerl and a typical Unix perl
  4. implementation. Much of this information can also be found at the end of
  5. PerlHelp. If you have 411, search for Perl…Macintosh…Extensions.
  6.  
  7. 1. VARIA
  8.  
  9. "\n" on a Mac means ASCII 13, as opposed to Unix, where it means ASCII 10
  10.  
  11. Pathnames are specified as:
  12.  
  13. volume:folder:file                for absolute pathnames
  14. :folder:file                        for relative pathnames
  15. :file                                    for relative pathnames
  16. file                                    for relative pathnames
  17.  
  18. MacPerl has a limited capability to handle constructs like `command` or
  19. open(F, "|command"), if you are the lucky owner of ToolServer. Additionally, whether
  20. you have toolserver or not, `pwd` and `Directory` (case is significant) always return
  21. the current directory, followed by a newline.
  22.  
  23. 2. SOCKETS
  24.  
  25. MacPerl has more Socket families than Unix Perl. Additionally, there is a call
  26. choose() to allow the user to interactively specify addresses or file names. As
  27. there are lots of rather complicated data types, there is a library header "GUSI.ph"
  28. which defines packing/unpacking procedures.
  29.  
  30. Choose() is called as follows:
  31.  
  32. &MacPerl'Choose(DOMAIN,TYPE,PROMPT,CONSTRAINT,FLAGS,DEFAULT)
  33. &MacPerl'Choose(DOMAIN,TYPE,PROMPT,CONSTRAINT,FLAGS)
  34. &MacPerl'Choose(DOMAIN,TYPE,PROMPT,CONSTRAINT)
  35. &MacPerl'Choose(DOMAIN,TYPE,PROMPT)
  36.          Puts up a modal dialog prompting the user to choose an address. 
  37.          DOMAIN specifies the communication domain, like for socket().
  38.          TYPE may be used by future communication domains to further 
  39.          differentiate within a domain, but is ignored by current domains. 
  40.          PROMPT is a message that will appear in the dialog. CONSTRAINT may 
  41.          be set to a suitable packed value to restrict the types of acceptable
  42.          addresses.
  43.  
  44.          Examples:
  45.  
  46.          require "GUSI.ph";
  47.          
  48.          $file = 
  49.             MacPerl'CHoose(
  50.                &GUSI'AF_FILE, 0, "", 
  51.                &GUSI'pack_sa_constr_file("OBJ ", "TEXT"));
  52.                             
  53.                             Return the full pathname of an existing text
  54.                             or MPW object file.
  55.          
  56.          $dir = &MacPerl'Choose(&GUSI'AF_FILE, 0, "", "", &GUSI'CHOOSE_DIR);
  57.  
  58.                             Return the full pathname of an existing directory.
  59.                             
  60.          $file = 
  61.             &MacPerl'Choose(
  62.                &GUSI'AF_FILE, 0, "", "", 
  63.                &GUSI'CHOOSE_NEW + &GUSI'CHOOSE_DEFAULT, "yo");
  64.  
  65.                             Return the pathname of a new file to be created.
  66.                                      
  67. Socket families are:
  68.  
  69. Internet:
  70.  
  71. Packing addresses:    &GUSI'pack_sockaddr_in(family, address, port)
  72. Unpacking addresses:    (family, address, port) = &GUSI'unpack_sockaddr_in(addr)
  73. Choose:                    Not available.
  74.  
  75. Unix:
  76.  
  77. Packing addresses:    &GUSI'pack_sockaddr_un(family, path)
  78. Unpacking addresses:    (family, path) = &GUSI'unpack_sockaddr_un(addr)
  79. Choose:                    choose(&GUSI'AF_UNIX, 0, "", "", 0, "");
  80.                             looks up an existing address.
  81.                             choose(
  82.                                 &GUSI'AF_UNIX, 0, "Yes ?", "", 
  83.                                 &GUSI'CHOOSE_NEW + &GUSI'CHOOSE_DEFAULT, "yo");
  84.                             creates a new address.
  85.                             No constraints may be specified.
  86.  
  87. Appletalk (ADSP):
  88.  
  89. Packing addresses:    &GUSI'pack_sockaddr_atlk(family, net, node, socket)     (numerical)
  90.                             &GUSI'pack_sockaddr_atlk_sym(family, obj, type, zone)    (symbolic)
  91. Unpacking addresses:    (family, net, node, socket) = &GUSI'unpack_sockaddr_atlk(addr)
  92.                             (family, obj, type, zone) = &GUSI'unpack_sockaddr_atlk_sym(addr)
  93. Choose:                    choose(&GUSI'AF_APPLETALK, 0, "Eh ?", 
  94.                                 &GUSI'pack_sa_constr_atlk("LaserWriter", "GorillaWriter"),
  95.                                 0, "");
  96.                             looks up an existing address.
  97.                             New addresses may not currently be created with choose.
  98.  
  99. PPC Toolbox:
  100.  
  101. Packing addresses:    &GUSI'pack_sockaddr_ppc(family, type, name, porttype)
  102. Unpacking addresses:    Not available.
  103. Choose:                    choose(&GUSI'AF_PPC, 0, "Eh ?", 
  104.                                 &GUSI'pack_sa_constr_ppc("Gonkulator"),
  105.                                 0, "");
  106.                             looks up an existing address.
  107.                             New addresses may not currently be created with choose.
  108.  
  109.  
  110. 3. ADDITIONAL FUNCTIONS AVAILABLE IN MACPERL
  111.  
  112. &MacPerl'Answer(PROMPT)
  113. &MacPerl'Answer(PROMPT,BUTTON1)
  114. &MacPerl'Answer(PROMPT,BUTTON1,BUTTON2)
  115. &MacPerl'Answer(PROMPT,BUTTON1,BUTTON2,BUTTON3)
  116.           Presents to the user a dialog with 1, 2, or 3 buttons. 
  117.           
  118.           Examples:
  119.           
  120.           &MacPerl'Answer("Nunc et in hora mortis nostrae", "Amen");
  121.                               
  122.                             always returns 0.
  123.                             
  124.           &MacPerl'Answer("I refuse");
  125.           
  126.                               is equivalent to &MacPerl'Answer("I refuse", "OK");
  127.           
  128.           &MacPerl'Answer("Delete hard disk ?", "OK", "Cancel");
  129.                   
  130.                             returns 1 for OK, 0 for Cancel
  131.         
  132.           &MacPerl'Answer("Overwrite existig file", "Overwrite", "Skip", "Cancel");
  133.               
  134.                             returns 2 for Overwrite, 1 for Skip, 0 for Cancel
  135.                                      
  136. &MacPerl'Ask(PROMPT, DEFAULT)
  137. &MacPerl'Ask(PROMPT)
  138.           Asks the user for a string. A default value may be given. Returns
  139.           undef if the dialog is cancelled.
  140.           
  141.           Example:
  142.           
  143.           $phone = &&MacPerl'Ask("Enter your phone number:");
  144.           $name = &&MacPerl'Ask("Enter your first name", "Bruce");
  145.           
  146.                             Useful for Australian database applications
  147.                                      
  148. &MacPerl'Pick(PROMPT, VALUES)
  149.           Asks the user to pick a choice from a list. VALUES is a list of choices. 
  150.           Returns undef if the dialog is cancelled.
  151.           
  152.           Examples:
  153.           
  154.           $color = &MacPerl'Pick("What's your favorite color baby ?", "Red", "Green", "Gold");
  155.              
  156. &MacPerl'SetFileInfo(CREATOR,TYPE,FILE...)
  157.             Changes the file types and creators of the file(s).
  158.  
  159.             Examples:
  160.  
  161.             &MacPerl'SetFileInfo("MPS ", "TEXT", yin, yang);
  162.  
  163.                                     Turn yin and yang into MPW text files
  164.  
  165. &MacPerl'GetFileInfo(FILE)
  166.             In scalar context, returns the file type. In array context, returns
  167.             (creator,type).
  168.  
  169.             Examples:
  170.  
  171.             &MacPerl'GetFileInfo(yin);
  172.  
  173.                                     Returns "TEXT" or ("MPS ", "TEXT").
  174.  
  175. &MacPerl'DoAppleScript(SCRIPT)
  176.             Execute an AppleScript script.
  177.             
  178.             Example:
  179.             
  180.             &MacPerl'DoAppleScript(<<END_SCRIPT);
  181. tell application "MacPerl"
  182.     make new Window
  183.     copy "Inserting text the hard way." to character 1 of front Window
  184. end tell
  185. END_SCRIPT
  186.  
  187. &MacPerl'Reply(ANSWER)
  188.             Reply to current DoScript request. Useful if you are calling Perl 
  189.             scripts from other applications.
  190.             
  191. &MacPerl'Quit(LEVEL)
  192.             If Level is 0, don't quit after ending the script. If 1, quit if 
  193.             running under a runtime version, if 2, always quit.
  194.  
  195. &MacPerl'LoadExternals(LIBFILE)
  196.             Load XCMD and XFCN extensions contained in file LIBFILE, which is searched
  197.             along the same path as it would be for a require. The extensions are made
  198.             accessible in the current package, unless they conatin an explicit package
  199.             name.
  200.  
  201. &MacPerl'DebugExternals(DEBUGLEVEL)
  202.             If DEBUGLEVEL is 0, don't print any debug information for XCMDs and XFCNs. 
  203.             If 1, print information for unimplemented callbacks. If 2, print 
  204.             informations for all callbacks.
  205.  
  206. &MacPerl'FAccess(FILE, CMD, ARGS)
  207.             When called from the tool, manipulate various information of files. To 
  208.             get the command constants, it's convenient to require "FAccess.ph".
  209.  
  210.     $TAB = &MacPerl'FAccess(FILE, &F_GTABINFO)
  211.     &MacPerl'FAccess(FILE, &F_STABINFO, TAB)
  212.             Manipulate tabulator setting (in spaces per tab).
  213.             
  214.     ($FONTNAME, $FONTSIZE) = &MacPerl'FAccess(FILE, &F_GFONTINFO)
  215.     $FONTNUM = &MacPerl'FAccess(FILE, &F_GFONTINFO)
  216.     &MacPerl'FAccess(FILE, &F_SFONTINFO, FONT [, SIZE])
  217.             Manipulate font and size information. Both font names and font numbers
  218.             are accepted for F_SFONTINFO; F_GFONTINFO returns a font name in an
  219.             array context, a font number in a scalar context.
  220.             
  221.     ($STARTSEL, $ENDSEL, $DISPLAYTOP) = &MacPerl'FAccess(FILE, &F_GSELINFO)
  222.     $STARTSEL = &MacPerl'FAccess(FILE, &F_GSELINFO)
  223.     &MacPerl'FAccess(FILE, &F_SSELINFO, $STARTSEL, $ENDSEL [, $DISPLAYTOP])
  224.             Manipulate the MPW selection of a file.
  225.             
  226.     ($LEFT, $TOP, $RIGHT, $BOTTOM) = &MacPerl'FAccess(FILE, &F_GWININFO)
  227.     $TOP = &MacPerl'FAccess(FILE, &F_GWININFO)
  228.     &MacPerl'FAccess(FILE, &F_SWININFO, LEFT, TOP [, RIGHT, BOTTOM])
  229.             Manipulate the window position.
  230.